home *** CD-ROM | disk | FTP | other *** search
/ Apple WWDC 1996 / WWDC96_1996 (CD).toast / Technology Materials / MacApp Release 10 / MacApp Release 10 - HD Ready / Libraries / App / Includes / MAApp.h next >
Encoding:
Text File  |  1996-04-03  |  817 b   |  57 lines  |  [TEXT/MPS ]

  1. // MAApp.h
  2. // Copyright © 1984-96 by Apple Computer, Inc. All rights reserved.
  3. // MacApp document header files.
  4.  
  5. #ifndef __MAAPP__
  6. #define __MAAPP__
  7.  
  8. // Conditional Macros (include before any other headers)
  9.  
  10. #ifndef __MACONDITIONALMACROS__
  11. #include "MAConditionalMacros.h"
  12. #endif
  13.  
  14. // MacApp Core
  15.  
  16. #ifndef __MACORE__
  17. #include "MACore.h"
  18. #endif
  19.  
  20. // MacApp Framework
  21.  
  22. #ifndef __MAFRAMEWORK__
  23. #include "MAFramework.h"
  24. #endif
  25.  
  26. // MacApp Documents
  27.  
  28. #ifndef __MADOCS__
  29. #include "MADocs.h"
  30. #endif
  31.  
  32. // MacApp Views
  33.  
  34. #ifndef __MAVIEWS__
  35. #include "MAViews.h"
  36. #endif
  37.  
  38. // MacApp Application
  39.  
  40. #ifndef __UAPPLICATION__
  41. #include "UApplication.h"
  42. #endif
  43.  
  44. #ifndef __UDEBUGVIEW__
  45. #include "UDebugView.h"
  46. #endif
  47.  
  48. #ifndef __UPERFORM__
  49. #include "UPerform.h"
  50. #endif
  51.  
  52. #ifndef __UVUASSIST__
  53. #include "UVUAssist.h"
  54. #endif
  55.  
  56. #endif // __MAAPP__
  57.